Factorial def factorial(x): """Recursive factorial implementation""" if x <= 0: return 1 return x * factorial(x - 1) Python Snippet Dec 10 2018